home *** CD-ROM | disk | FTP | other *** search
/ Champak 140 / (Vol 140) Sep 19 2011.iso / Games / battle_of_the_bands.swf / scripts / menu_main_menu.as < prev    next >
Text File  |  2011-09-19  |  731b  |  37 lines

  1. package
  2. {
  3.    import flash.display.MovieClip;
  4.    import flash.display.SimpleButton;
  5.    
  6.    public dynamic class menu_main_menu extends MovieClip
  7.    {
  8.        
  9.       
  10.       public var entercomp_btn:SimpleButton;
  11.       
  12.       public var playGame_btn:SimpleButton;
  13.       
  14.       public var howToPlay_btn:SimpleButton;
  15.       
  16.       public var viewHighscores1_btn:SimpleButton;
  17.       
  18.       public var send_to_friends_btn:SimpleButton;
  19.       
  20.       public function menu_main_menu()
  21.       {
  22.          super();
  23.          addFrameScript(0,frame1,1,frame2);
  24.       }
  25.       
  26.       function frame1() : *
  27.       {
  28.          stop();
  29.       }
  30.       
  31.       function frame2() : *
  32.       {
  33.          stop();
  34.       }
  35.    }
  36. }
  37.